home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / main.swf / scripts / fl / core / InvalidationType.as < prev    next >
Text File  |  2020-08-04  |  658b  |  29 lines

  1. package fl.core
  2. {
  3.    public class InvalidationType
  4.    {
  5.       
  6.       public static const SIZE:String = "size";
  7.       
  8.       public static const ALL:String = "all";
  9.       
  10.       public static const DATA:String = "data";
  11.       
  12.       public static const SCROLL:String = "scroll";
  13.       
  14.       public static const STATE:String = "state";
  15.       
  16.       public static const STYLES:String = "styles";
  17.       
  18.       public static const SELECTED:String = "selected";
  19.       
  20.       public static const RENDERER_STYLES:String = "rendererStyles";
  21.        
  22.       
  23.       public function InvalidationType()
  24.       {
  25.          super();
  26.       }
  27.    }
  28. }
  29.